home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Classic 39
/
CD CLASSIC #39 (1998).iso
/
EMPRESA
/
visio
/
Vistdstd
/
Install
/
Data.Z
/
Statline.BAS
< prev
next >
Wrap
BASIC Source File
|
1996-09-04
|
1KB
|
33 lines
Attribute VB_Name = "STATLINE"
' -----------------------------------------------------------------------------
' Copyright (C) 1993-1996 Visio Corporation. All rights reserved.
'
' You have a royalty-free right to use, modify, reproduce and distribute
' the Sample Application Files (and/or any modified version) in any way
' you find useful, provided that you agree that Visio has no warranty,
' obligations or liability for any Sample Application Files.
' -----------------------------------------------------------------------------
Option Explicit '-- All Variables Explicit
Sub ClearStatusLine()
'------------------------------------
'--- ClearStatusLine ----------------
'--
'-- Clear the status line.
'--
frmMainWindow.ctlStatusLine.Caption = "Ready" '-- Clear Status Line Text
End Sub
Sub StatusLineMsg(strMessage As String)
'------------------------------------
'--- StatusLineMsg ------------------
'--
'-- Prints a message on the status line.
'--
frmMainWindow.ctlStatusLine.Caption = strMessage
End Sub